[Git] 01. Initial

Initialize and configuration

Initialize

$ git init

Configure (Glabal)

$ git config --global -e

Configure (Local)

$ git config --local -e

Config user name and email

$ git config --local user.name {your_name}
$ git config --local user.email {your_email}

Use VSCODE for default git editor

$ git config --global core.editor "code --wait"

(reference)

Table of contents
  1. 1. Initialize and configuration
    1. 1.0.1. Initialize
    2. 1.0.2. Configure (Glabal)
    3. 1.0.3. Configure (Local)
    4. 1.0.4. Config user name and email
    5. 1.0.5. Use VSCODE for default git editor